home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48hor1 / lisp.src < prev    next >
Text File  |  1991-02-21  |  341b  |  12 lines

  1. %%HP: T(3)A(D)F(.);
  2. @ LISP (List Processor):  {list}  <<process>>  ->  {processed list}
  3. @ by Charles W. Jess.  See HPX v1 n5 p25.
  4. \<< OVER SIZE \-> p n
  5.   \<< OBJ\-> 1 SWAP
  6.     START n ROLL p EVAL
  7.     NEXT n \->LIST
  8.   \>>
  9. \>>
  10. @ Example: { 4 5 6 }  << SQ >>  LISP  -->  { 16 25 36 }
  11. @ Note: The process may be a program or a list.
  12.